Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

write-data

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

write-data

Write a YAML or JSON file to disk. Automatically detects the format to write based on extension. Or pass `ext` on the options.

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9.1K
decreased by-12.69%
Maintainers
1
Weekly downloads
 
Created
Source

write-data NPM version Build Status

Write a YAML or JSON file to disk. Automatically detects the format to write based on extension. Or pass ext on the options.

Install

Install with npm

$ npm i write-data --save

Usage

var writeData = require('write-data');

// this is the example data we want to write to disk.
var data = {language: 'node_js', node_js: ['0.10', '0.12']};

async

writeData('.travis.yml', data, function(err) {
  if (err) console.log(err);
});

sync

writeData.sync('.travis.yml', data);

result

Both result in a .travis.yml file with the following contents:

language: node_js
node_js:
  - "0.10"
  - "0.12"

JSON

// async
writeData('foo.json', {abc: 'xyz'}, function(err) {
  if (err) console.log(err);
});

// sync
writeData.sync('foo.json', , {abc: 'xyz'});

Similar projects

  • read-data: Read JSON or YAML files. | homepage
  • read-yaml: Very thin wrapper around js-yaml for directly reading in YAML files. | homepage
  • write-json: Write a JSON file to disk, also creates intermediate directories in the destination path if… more | homepage
  • write-yaml: Write YAML. Converts JSON to YAML writes it to the specified file. | homepage

Running tests

Install dev dependencies:

$ npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Author

Jon Schlinkert

License

Copyright © 2015 Jon Schlinkert Released under the MIT license.


This file was generated by verb-cli on November 17, 2015.

Keywords

FAQs

Package last updated on 17 Nov 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc